HyperTalk - definizione. Che cos'è HyperTalk
Diclib.com
Dizionario in linea

Cosa (chi) è HyperTalk - definizione

PROGRAMMING LANGUAGE
Hypertalk; HyperTalk programming language; XCMD; XFCN; XTalk

HyperTalk         
A verbose semicompiled language by Bill Atkinson and Dan Winkler, with loose syntax and high readability. HyperTalk uses HyperCard as an object management system, development environment and interface builder. Programs are organised into "stacks" of "cards", each of which may have "buttons" and "fields". All data storage is in zero-terminated strings in fields, local, or global variables; all data references are through "chunk expressions" of the form: 'last item of background field "Name List" of card ID 34217'. Flow of control is event-driven and uses message-passing among scripts that are attached to stack, background, card, field and button objects. Apple Computer has taken back distribution and maintenance of HyperCard from Claris Corporation ["HyperTalk Language Reference Manual", A-W 1988]. (1994-11-17)

Wikipedia

HyperTalk

HyperTalk is a discontinued high-level, procedural programming language created in 1987 by Dan Winkler and used in conjunction with Apple Computer's HyperCard hypermedia program by Bill Atkinson. Because the main target audience of HyperTalk was beginning programmers, HyperTalk programmers were usually called "authors" and the process of writing programs was known as "scripting". HyperTalk scripts resembled written English and used a logical structure similar to that of the Pascal programming language.

HyperTalk supported the basic control structures of procedural languages: repeat for/while/until, if/then/else, as well as function and message "handler" calls (a function handler was a subroutine and a message handler a procedure). Data types usually did not need to be specified by the programmer; conversion happened transparently in the background between strings and numbers. There were no classes or data structures in the traditional sense; in their place were special string literals, or "lists" of "items" delimited by commas (in later versions the "itemDelimiter" property allowed choosing an arbitrary character). Code execution typically began as a response to an event such as a mouse click on a UI widget.

In the late 1980s Apple considered using HyperCard's HyperTalk scripting language as the standard language across the company and within its classic Mac OS operating system, as well as for interprocess communication between Apple and non-Apple products. The company did not oppose the development of imitations like SuperCard, but it created the HyperTalk Standards Committee to avoid incompatibility between language variants. The case-insensitive language was initially interpreted, but gained just-in-time compilation with HyperCard 2.0.